解题思路:
注意事项:
参考代码:
#include<iostream>
using namespace std;
void GetReal(float x)
{
cout << x << endl;
}
void GetString(string y)
{
cout << y << endl;
}
int main()
{
float cnt;
string str;
cin >> cnt;
cin >> str;
cout << "please input a number:" << endl;
cout << "please input a string:" << endl;
GetReal(cnt);
GetString(str);
return 0;
}
0.0分
0 人评分
C二级辅导-进制转换 (C语言代码)浏览:657 |
【绝对值排序】 (C语言代码)浏览:832 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:716 |
用筛法求之N内的素数。 (C++代码)浏览:754 |
水仙花 (C语言代码)浏览:1163 |
1009题解浏览:802 |
C语言训练-数字母 (C语言代码)浏览:648 |
P1000 (C语言代码)浏览:911 |
Hello, world! (C语言代码)浏览:766 |
1050题解(结构体数组与结构体指针的使用)浏览:1216 |