题解 1003: [编程入门]密码破译

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

Hello World!

摘要:#include <stdio.h>void main(){    printf("**************************\n");    printf("Hello World!\n"……

密码破译c语言解析

摘要:解题思路:本题非常简单,只需要了解ASCII就可以解出。注意事项:1.注意最后要输出的格式为字符串。参考代码:#include<stdio.h>int main(){    char a[10];  ……