半小时写六道题可以吗挑战
摘要:解题思路:注意事项:这些题目会不会还是太简单了参考代码:s=input()count=0for i in s: if((i>='A')and(i<='Z'))or……
C语言训练-数字母(简单数组)
摘要: #include
#include
void deal(char str[999]);
int main() {
char s……
题解 1130: C语言训练-数字母(C)
摘要:解题思路:写好if中的判断条件就好啦~参考代码:#include<stdio.h>
#include<string.h>
int main(void){
char array[100];
……
1130: C语言训练-数字母
摘要:```cpp
#include
#include
using namespace std;
int main()
{
short s=0;
char ch[100];
……
1130: C语言训练-数字母
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <string>
using namespace std;
int main()
{
st……
C语言训练-数字母(简单C++)
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
char s[88];
int i=0……