K12教育赛事综合服务平台
聚乐之家官方网站
下载聚乐之家官方App
专注青少年竞赛题库网站
#include <iostream> using namespace std; int main() { short s = 300; int i = s; float f = 10.5f; double d = f; char c = 'A'; int num = c; cout << i << " " << d << " " << num << endl; return 0; }
300 10 65
300 10.5 97
200 10.5 65
300 10.5 65