主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
Amberqwe
2024年3月27日 21:58
密码翻译 题解:
P1179
回复 1
|
赞 0
|
浏览 523
其他软件正确,这里是错误 #include <stdio.h> #include <string.h> int main() { char s[80]; while(gets(s)){ int n = strlen(s); if(n==0) return 0; for (int i = 0; i < n; i++) { if...
huanghu
2024年3月24日 20:24
密码翻译 题解:
P1179
回复 0
|
赞 0
|
浏览 490
#include<iostream> #include<string> using namespace std; int main(){ string str; while(getline(cin,str)){ int len = str.length(); for(int i = 0; i < len; i++){ if(str[i] >= 'a' && str[i] <='z'){ str[i] = ((str[i]-'a' + 1)%26)+97; }else if...
黄东龙
2023年10月5日 13:11
密码翻译 题解:
P1179
回复 2
|
赞 0
|
浏览 1.1k
我自己写的考研第一个题解:使用isalpha函数判断后再加入其他分支情况,题并不难但并未AC : #include<iostream> #include<stdio.h> #include<string.h> #include<algorithm> #include<stack> using namespace std; int n,a[1000],b[1000]; int p,q,r,t,l,l1,l2,l3,cnt,tem,ans,sum; string ...
活着的传奇
2023年8月29日 11:07
密码翻译 题解:
P1179
回复 0
|
赞 0
|
浏览 927
数组定为100真的只能通过百分之30,要1000才可以。 #include<bits/stdc++.h> using namespace std; int main(){ char s[1000]; while(gets(s)){ for(int i=0;i<strlen(s);i++){ if((s[i]>='a'&&s[i]<='y')||(s[i]>='A'&&s[i]<='Y')) s[i]=s[i]+1; else if(s[i...
猪蹄子全是肉
2023年5月4日 18:36
密码翻译 题解:
P1179
回复 0
|
赞 1
|
浏览 1.0k
#include <iostream> #include <cstring> // 引用头文件 using namespace std; int main() { string s; // 定义字符串 s while (getline(cin, s)) { // 不断地从标准输入中读入一行字符串 for (auto &c:s){ //...
ymw1836828452
2020年4月28日 09:51
题解
P1179
回复 0
|
赞 0
|
浏览 8.3k
#include <stdio.h> #include <stdlib.h> //我认为题不准确,它要多组数据,却没有数据结束标志,我不用循环,只给一组数据,又通不过:一下通过率33%。 int main() {char a[80]; int i; gets(a); for(i=0;a[i]!='\0';i++) { if(a[i]<=122&...
Lucky_Bug
2020年3月29日 10:55
【C】通过33%的数组长度设为1000
P1179
回复 0
|
赞 3
|
浏览 9.4k
我看是80字符,设置的100,结果不对,看了别人都是1000,应该是题面少打了0
莫小七
2020年3月14日 18:23
1179密码翻译c++
P1179
回复 0
|
赞 0
|
浏览 13.7k
#include<iostream> #include<cstring> #include<string> using namespace std; int main() { string s; while (getline(cin, s)) { for (int i = 0;i < s.size();i++) { if (s[i] >= 'a' && s[i] <= 'y') { s[i]++; } else if (s[i] >= 'A' &...
题目
密码翻译
题解数量
8
发布题解
热门题解
1
【C】通过33%的数组长度设为1000
2
密码翻译 题解:
3
题解
4
密码翻译 题解:
5
密码翻译 题解:
6
密码翻译 题解:
7
1179密码翻译c++
8
密码翻译 题解: