解题思路:记录做法
注意事项:
参考代码:#include <stdio.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
void GetReal(char b[]){
printf("please input a number:\n");
gets(b);
}
void GetString(char a[]){
printf("please input a string:\n");
gets(a); //可以用gets,提交过了,满分
}
int main(){
char b1[100];
char a1[100];
GetReal(b1);
GetString(a1);
printf("%s\n",b1);
printf("%s\n",a1);
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.11 (C语言代码)浏览:525 |
C二级辅导-计负均正 (C语言代码)浏览:607 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:633 |
程序员的表白 (C语言代码)浏览:706 |
Tom数 (C语言代码)浏览:758 |
用筛法求之N内的素数。 (C语言代码)浏览:595 |
时间转换 (C语言代码)浏览:697 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:497 |
简单的事情 (C语言代码)浏览:679 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:820 |